home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / os2 / zoc110.arj / ZOC / SCRIPT / SAMPLES / 1_FIRST next >
Text File  |  1993-10-07  |  315b  |  17 lines

  1. ////////////////////////////////////////////////////////
  2. // OUR FIRST SCRIPT
  3. ////////////////////////////////////////////////////////
  4.  
  5. //    comments may begin with //
  6. #    or with # (if you like that better)
  7.  
  8. //    clear the screen
  9. cls
  10.  
  11. //    say something
  12. write "Hello "
  13. writeln "World!"
  14.  
  15. //    end it
  16. endscript
  17.